跳到主要内容

Fortran 模块过程

模块过程可以通过 use 语句被其他程序使用。

module subs
implicit none
contains

subroutine (...)

优点:编译调用程序时,可以自动检测参数个数、类型,因为过程的所有细节都是可用的。